Get all entries in an entry round
This endpoint gives you access to all entries in a given entry round, in pages of 100.
caution
You can find the identifier of an entry round by looking at the "id" property returned from the /entry-rounds endpoint.
curl https://platform.younoodle.com/client-api/v1/competition/my_competition/entry-rounds/my_entry_round/entries \
-H 'YouNoodle-API-Key: 56f9bbec9bc614e351e5eea2ea851e31' \
-H 'Accept: application/json'
The above command returns JSON structured like this:
{
"object": "list",
"count": 2,
"page": 1,
"has_more": false,
"data": [
{
"id": "6942526137426e743069797a42543172",
"object": "entry",
"url": "/client-api/v1/competition/entry-rounds/the_honey_badger_challenge/entries",
"name": "A marvellous entry",
"created_at": 1459530831,
"submitted_at": 1476717797
},
{
"id": "4c4131613947423338766d6d61716c35",
"object": "entry",
"url": "/client-api/v1/competition/entry-rounds/the_honey_badger_challenge/entries",
"name": "A revolutionary entry",
"created_at": 1459535852,
"submitted_at": 1459930831
}
]
}
HTTP Request
GET https://platform.younoodle.com/client-api/v1/competition/<id>/entry-rounds/<entry-round-id>/entries
Query parameters
Add ?page=n as a request parameter to page through the data.
URL Parameters
| Parameter | Description |
|---|---|
| id | Your competition identifier |
| entry-round-id | The entry round identifier whose entries you want to access |